home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 024 / conquest / vars.h < prev   
C/C++ Source or Header  |  1995-03-17  |  1KB  |  44 lines

  1. #ifndef GLOBAL_DEFINITION_OR_EXTERN
  2. #define GLOBAL_DEFINITION_OR_EXTERN extern
  3. #endif
  4.  
  5. GLOBAL_DEFINITION_OR_EXTERN int r2nge[nstars+1][nstars+1],
  6.            tf_stars[nstars+1][2],
  7.            col_stars[nstars+1][2];
  8.  
  9. GLOBAL_DEFINITION_OR_EXTERN char en_research;
  10.  
  11. GLOBAL_DEFINITION_OR_EXTERN struct {
  12.         int enemy, star, tf;
  13.         } board[bdsize+1][bdsize+1];
  14.  
  15. GLOBAL_DEFINITION_OR_EXTERN struct {
  16.         int x, y;
  17.         struct stplanet *first_planet;
  18.         int visit[2];
  19.         } stars[nstars+1];
  20.  
  21. GLOBAL_DEFINITION_OR_EXTERN struct {
  22.         int x, y, xf, yf, s, t, c, b, dest, eta, origeta;
  23.         int blasting, withdrew;
  24.         } tf[2][27];
  25.  
  26. GLOBAL_DEFINITION_OR_EXTERN float growth_rate[2];
  27.  
  28. GLOBAL_DEFINITION_OR_EXTERN int vel[2],range[2],weapons[2],
  29.            weap_working[2],ran_working[2],vel_working[2],
  30.            weap_req[11], ran_req[bdsize+1],
  31.            vel_req[max_vel+1], turn,production_year,
  32.            enemy_arrivals[nstars+1], en_departures[nstars+1],
  33.            player_arrivals[nstars+1], game_over,
  34.            bottom_field;
  35.  
  36. GLOBAL_DEFINITION_OR_EXTERN termtype        terminal_type;
  37.  
  38. GLOBAL_DEFINITION_OR_EXTERN int x_cursor, y_cursor,
  39.            saved_game,
  40.            left_line[25], debug;
  41.  
  42. GLOBAL_DEFINITION_OR_EXTERN int raw_fd;
  43.  
  44.